time passed python

91

time passed python -

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)

Comments

Submit
0 Comments